calendar: Fix else branch indentations
authorTimm Bäder <mail@baedert.org>
Sat, 18 Mar 2017 06:06:35 +0000 (07:06 +0100)
committerTimm Bäder <mail@baedert.org>
Sat, 18 Mar 2017 06:07:06 +0000 (07:07 +0100)
gtk/gtkcalendar.c

index 5c37e6f8b0537cf91d5ca4558bdc48427037beb1..dd2d78f202a285832b34e63bc8a982972f225561 100644 (file)
@@ -2234,13 +2234,13 @@ calendar_snapshot_header (GtkCalendar *calendar,
       x = header_width - (3 + max_month_width
                           - (max_month_width - logical_rect.width)/2);
     else
-    x = 3 + (max_month_width - logical_rect.width) / 2;
+      x = 3 + (max_month_width - logical_rect.width) / 2;
   else
     if (year_left)
       x = header_width - (3 + priv->arrow_width + max_month_width
                           - (max_month_width - logical_rect.width)/2);
     else
-    x = 3 + priv->arrow_width + (max_month_width - logical_rect.width)/2;
+      x = 3 + priv->arrow_width + (max_month_width - logical_rect.width)/2;
 
   gtk_snapshot_render_layout (snapshot, context, x, y, layout);
   g_object_unref (layout);